From c36e1c247ad3eca17f0048dda8452973b6672f65 Mon Sep 17 00:00:00 2001 From: George Dunlap Date: Mon, 8 Aug 2016 10:42:48 +0100 Subject: [PATCH] tools/xenalyze: Remove bogus library dependencies xenalyze was inheriting LDLIBS of xentrace; but it doesn't need them. Remove this dependency, which allows xenalyze to be built without the libraries having been built, and run without the libraries being installed. Signed-off-by: George Dunlap Acked-by: Wei Liu Reviewed-by: Dario Faggioli --- tools/xentrace/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile index 0157be2d35..a85ed33406 100644 --- a/tools/xentrace/Makefile +++ b/tools/xentrace/Makefile @@ -50,7 +50,7 @@ xentrace_setsize: setsize.o $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS) $(APPEND_LDFLAGS) xenalyze: xenalyze.o mread.o - $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) $(APPEND_LDFLAGS) + $(CC) $(LDFLAGS) -o $@ $^ $(APPEND_LDFLAGS) -include $(DEPS) -- 2.30.2